func time.appendInt

32 uses

	time (current package)
		format.go#L386: func appendInt(b []byte, x int, width int) []byte {
		format.go#L515: 			buf = appendInt(buf, int(m0), 0)
		format.go#L518: 		buf = appendInt(buf, int(m1), wid)
		format.go#L520: 		buf = appendInt(buf, int(m2), 9)
		format.go#L531: 	buf = appendInt(buf, t.Year(), 0)
		format.go#L539: 		buf = appendInt(buf, int(month), 0)
		format.go#L542: 	buf = appendInt(buf, t.Day(), 0)
		format.go#L544: 	buf = appendInt(buf, t.Hour(), 0)
		format.go#L546: 	buf = appendInt(buf, t.Minute(), 0)
		format.go#L548: 	buf = appendInt(buf, t.Second(), 0)
		format.go#L550: 	buf = appendInt(buf, t.Nanosecond(), 0)
		format.go#L643: 			b = appendInt(b, y%100, 2)
		format.go#L645: 			b = appendInt(b, year, 4)
		format.go#L652: 			b = appendInt(b, int(month), 0)
		format.go#L654: 			b = appendInt(b, int(month), 2)
		format.go#L661: 			b = appendInt(b, day, 0)
		format.go#L666: 			b = appendInt(b, day, 0)
		format.go#L668: 			b = appendInt(b, day, 2)
		format.go#L676: 			b = appendInt(b, yday, 0)
		format.go#L678: 			b = appendInt(b, yday, 3)
		format.go#L680: 			b = appendInt(b, hour, 2)
		format.go#L687: 			b = appendInt(b, hr, 0)
		format.go#L694: 			b = appendInt(b, hr, 2)
		format.go#L696: 			b = appendInt(b, min, 0)
		format.go#L698: 			b = appendInt(b, min, 2)
		format.go#L700: 			b = appendInt(b, sec, 0)
		format.go#L702: 			b = appendInt(b, sec, 2)
		format.go#L731: 			b = appendInt(b, zone/60, 2)
		format.go#L736: 				b = appendInt(b, zone%60, 2)
		format.go#L744: 				b = appendInt(b, absoffset%60, 2)
		format.go#L761: 			b = appendInt(b, zone/60, 2)
		format.go#L762: 			b = appendInt(b, zone%60, 2)